/* --- Swiper na hlavní stránce --- */
.swiper {
  width: 100% !important;
  overflow: hidden;
  padding: 0 10px 60px 10px !important;
  position: relative;
}

.swiper-wrapper {
  display: flex;
}

.swiper-slide {
  padding: 0 8px;
  box-sizing: border-box;
}

.swiper-slide .product {
  width: 100% !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #000;
  top: 40%;
}

.swiper-pagination {
  position: absolute !important;
  bottom: 8px !important;
  text-align: center;
  width: 100% !important;
  z-index: 10;
  pointer-events: none;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 4px;
  background: #999;
  opacity: 0.3;
  margin: 0 4px;
  border-radius: 2px;
  transition: all 0.2s ease;
  pointer-events: auto;
}

.swiper-pagination-bullet-active {
  background: #000;
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper {
    padding-bottom: 70px !important;
  }

  .swiper-slide {
    padding: 0 6px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-pagination {
    bottom: 12px !important;
  }

  .swiper-pagination-bullet {
    width: 16px;
    height: 3px;
  }
}